@prefix iop: <https://w3id.org/iadopt/ont/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ex: <http://example.org/iadopt/HFR> .

ex:Variable
    a 
        iop:Variable ;
    rdfs:label 
        "Time quality flag " ;
    rdfs:comment 
        """QC flags stating if the timestamp associated to the data is correct or not.""" ;
    iop:hasObjectOfInterest 
        ex:OoI ;
    iop:hasProperty 
        ex:Prop ;
    iop:hasConstraint 
        [ a iop:Constraint ;
             rdfs:label "good if time is correct" ;
             iop:constrains ex:Prop ;
        ] .

ex:OoI
    a 
        iop:Entity ;
    rdfs:label 
        "Timestamp of dataset" .

ex:Prop
    a 
        iop:Property ;
    rdfs:label 
        "quality flag" .
